home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / appleman / eventgbl.bas < prev    next >
Encoding:
BASIC Source File  |  1994-10-06  |  451 b   |  17 lines

  1. ' EventGbl.bas
  2.  
  3. ' Global module for EventCod demonstration program
  4. ' Sample program exploring how common algorithms can be
  5. ' converted to event driven versions for Visual Basic
  6. '
  7.  
  8. ' SampleArray is the data array used to demonstrate
  9. ' the different search and sort algorithms.
  10.  
  11. Global Const ArraySize% = 6000
  12.  
  13. ' We allocate an extra byte here to prevent boundary
  14. ' errors during the quicksort search
  15. Global SampleArray(6001) As Double
  16.  
  17.